home *** CD-ROM | disk | FTP | other *** search
/ Floppyshop 2 / Floppyshop - 2.zip / Floppyshop - 2.iso / diskmags / 0022-3.564 / dmg-0049 / 511.txt < prev    next >
Text File  |  1997-04-16  |  15KB  |  361 lines

  1. Via:      UK.AC.EARN-RELAY; 12 OCT 89 11:44:09 GMT  
  2. Received: from UKACRL by UK.AC.RL.IB (Mailer X1.25) with BSMTP id 9820; Thu, 12
  3.           Oct 89 11:44:27 BS
  4. Received: from CEARN.cern.ch by UKACRL.BITNET (Mailer X1.25) with BSMTP id
  5.           0162; Thu, 12 Oct 89 11:44:26 B
  6. Received: by CEARN (Mailer R2.03B) id 5466; Thu, 12 Oct 89 11:06:44 GVA
  7. Date:     Wed, 11 Oct 89 20:00:13 MDT
  8. Reply-To: INFO-ATARI16@MIL.ARMY.WSMR-SIMTEL20
  9. Sender:   INFO-ATARI16 Discussion <INFO-A16@EARN.DEARN>
  10. Comments: Warning -- original Sender: tag was INFO-A16@MARIST
  11. From:     INFO-ATARI16-REQUEST@MIL.ARMY.WSMR-SIMTEL20
  12. Subject:  INFO-ATARI16 Digest V89 #511
  13. Comments: To: INFO-ATARI16@WSMR-SIMTEL20.ARMY.MIL
  14.  
  15. INFO-ATARI16 Digest         Wed, 11 Oct 89       Volume 89 : Issue 511
  16.  
  17. Today's Topics:
  18.                               Databases
  19.                   Formatting using a bad block list
  20.                      PD Word Processors (2 msgs)
  21.                         Portable Mac vs STACY
  22.                    PORTFOLIO is *not* vaporware...
  23.                      Printer driver modifications
  24.               Wanted: Info on DEGAS picture compression
  25. ----------------------------------------------------------------------
  26.  
  27. Date: 11 Oct 89 21:28:39 GMT
  28. From: gem.mps.ohio-state.edu!uwm.edu!mrsvr.UUCP!jupiter.uucp!krieg@apple.com
  29.  (Andrew Krieg)
  30. Subject: Databases
  31.  
  32. I tried to email this to you but that didn't work.  Oh, well.
  33.  
  34.  
  35. To: ron@wilbur.njit.edu
  36. Subject: Re: Databases
  37. News-Path: mrsvr.UUCP!uwm.edu!rutgers!galaxy.rutgers.edu!argus!ron
  38. References: <1179@mrsvr.UUCP> <1307@argus.UUCP>
  39.  
  40. Your message got through fine.  I'd really like to see the C code, but I
  41. don't think it will be necessary to post it in the open forum.  You could
  42. just email it to me.
  43.  
  44. This programmers add-on does not require RegentBase?  Do you mean it offers
  45. just a rudimentary set of tools.  Do these tools allow you to create a
  46. database, or do you need RegentBase to do this?  For $25 I wouldn't expect
  47. too much, but what do I know? 8~)
  48.  
  49. Andrew Krieg
  50.  
  51. ------------------------------
  52.  
  53. Date: 11 Oct 89 15:21:14 GMT
  54. From: att!dptg!lzaz!hcj@ucbvax.Berkeley.EDU  (HC Johnson)
  55. Subject: Formatting using a bad block list
  56.  
  57. This is the README from my format.arc.  Send mail, and I'll mail
  58. it to you.
  59. ------------------------
  60.  
  61. Here are two programs:
  62. minihdx; used to format using a industry bad block list.
  63. mkfs;    used to partition, and build GEM file systems.
  64.  
  65. MINIHDX
  66.  
  67. Usage:
  68.  
  69.     minihdx.ttp
  70.  
  71.     minihdx SCSI LUN badfile "FORMAT"
  72. where;
  73.     SCSI is the SCSI number (0-7).
  74.     LUN  is the logical unit.  If there is only one drive, it is 0.
  75.     badfile is a file of important parameters and the bad list.
  76.     FORMAT  is a keyword that if omitted will prevent actual formatting.
  77.  
  78. The badfile is structured as follows.  I have used parameters from my drive
  79. as an example.
  80.  
  81. ------ bad file follows -----
  82. #            THESE ARE MY COMMENTS, NOT in file.
  83. #            ------------------------------------
  84. # my list        any line starting with # is a comment
  85. SERIALNO=188885        this is an ascii string
  86. INTERLEAVE=1        my Adaptec 4000 recommends using 1.
  87. CYLINDERS=511        number of cylinders.
  88. HEADS=9            number of heads.
  89. REDUCEDWRITE=511    if the drive requires 'reduced write' put the cylinder
  90. #            otherwise, set = to CYLINDERS
  91. LANDING=4        where your drive should settle when parked.
  92. STEPRATE=2        0, 1, or 2.  0=3ms,st506; 1=28us,st412; 2=12us
  93. SECTORS=17        Adaptec 4000 is 17 is interleave is 1, 16 otherwise.
  94. #            MFM 16/17 RLL is 25 ?
  95. #            The format of a badlist CYL<tab>HEAD<tab>BIT_POSITION
  96. #            The BADLIST MUST increase monotonically!!!
  97. BADLIST:        the list of bad bits areas follows to the end of file
  98. 26    8    8521    cylindar 26, head 8, bit position 8521
  99. 485    8    9454
  100. 493    3    8633
  101. 496    7    8012
  102. =====================end of badfile==============
  103.  
  104. The Adaptec controllers have a cleaver scheme of handling bad spots on the disk.
  105. When the bad list is passed to the controller during formatting, it removes the
  106. sectors containing the areas so that the disk appears to be a linear sequence
  107. of good sectors; only a few appear missing at the end.
  108.  
  109. The bad list may contain at most 127 entries.
  110.  
  111. After formatting, I attempt to find out how many good sectors are on the disk.
  112. This is approximatly, TOTAL minus the number of bad spots.  Somtimes a bad
  113. spot will cost 2 sectors, sometimes none.  The SCSI command to read the size
  114. can only be issued on BMS-200 controllers.  It fails on others.  If this
  115. happens, then I use the approximate value.
  116.  
  117. Next, I write sector 0.  This contains the following:
  118. a. It is cleared to 0.
  119. b. At the beginning is a simple program to stop disk booting should the checksum
  120.    be set to 1234.
  121. c. Hd_size, the size of the disk is set to the number of good sectors.
  122. d. Other miscellaneous parameters are set.
  123. e. Sector 1 is reserved for the Bad Sector List (BSL).  This sector is cleared.
  124. f. The number of Bad Sectors is set to 0.
  125.  
  126. Note:  The BSL is an ATARI invention and does not need to know about the sectors
  127.     lost in the bad list.
  128.  
  129. Sample:
  130.     minihdx 1 0 badfile FORMAT
  131. to format SCSI 1, LUN 0, using badfile for parameters.
  132.     minihdx 1 0 badfile NO
  133. will omit the formatting, but write sectors 0 and 1.
  134.  
  135.  
  136. MKFS
  137.  
  138. Mkfs is used to partition and build TOS File systems.  I had intended to
  139. use either the Supra or HDX301 'formatter' to partition the drive.  My Supra
  140. software seems to want to format first, loosing my bad sector mapping.
  141. HDX301 is nuts.  It requires using the BSL and other gunk.  Additionally,
  142. after formatting, it does a bad sector scan, and screws up on my large drives.
  143.  
  144. I wrote this as a result.  I have decided not to use the Atari HDX301 scheme
  145. for handling over 4 partitions.  I use PC-Ditto and Spectre-128, and both
  146. of these expect the Supra Partitioning scheme.  The Supra software is readily
  147. available and can be used to boot the hard disk and keep 12 partitions.
  148.  
  149. TOS1.4 will handle a full  32 Megabyte file system; but writes are S L O W!
  150. This large a file system needs a FAT cache.  I did not support ATARI's
  151. really wild scheme of getting gigabytes by changing the sector size.
  152. Why couldn't they just change the Cluster Size, like IBM.  Anyway, if the
  153. sector size is changed I can't use Norton utilities and PC-ditto on those
  154. partitions.
  155.  
  156. Mkfs has no parameters.  It prompts for all parameters, and suggests reasonable
  157. defaults.  After the SCSI and LUN are entered it reads sector 0 and prints
  158. the current partition table.  If the drive has just been formatted this area
  159. will be cleared to 0.  Mkfs is usable on any drive.  If that drive does not
  160. use Supra partitioning, partitions 4-11 may print a invalid numbers.  Just
  161. ignore them and change only partions 0-3.
  162. Partitions for Minix (MIX) and Spectre-128 can be allocated as well.
  163. ---------
  164.  
  165. Howard C. Johnson
  166. ATT Bell Labs
  167. att!lzaz!hcj
  168. hcj@lzaz.att.com
  169.  
  170. ------------------------------
  171.  
  172. Date: 11 Oct 89 21:02:33 GMT
  173. From:
  174.  gem.mps.ohio-state.edu!uakari.primate.wisc.edu!aplcen!haven!uvaarpa!hudson!asts
  175. un9.astro.Virginia.EDU!gl8f@tut.cis.ohio-state.edu  (Greg Lindahl)
  176. Subject: PD Word Processors
  177.  
  178. In article <5229@ubc-cs.UUCP> buchanan@grads.cs.ubc.ca (John Buchanan) writes:
  179.  
  180. #>> [ someone else ]
  181. #>>Why stupid?  Good software takes time to write, and a decent commercial
  182. #>>product can easily be worth more than $100.
  183. #
  184. #I am sorry.  This reply is just to [sic] mild.
  185.  
  186. Can we talk about this somewhere else? I use several non-commercial
  187. products which are better than corresponding commercial products in
  188. the features that I *personally* find important -- TeX/LaTeX, gnu c,
  189. gnu emacs (and micrognu), pgplot, et cetera. Different strokes for
  190. different folks.
  191.  
  192.  
  193. ------
  194. Greg Lindahl
  195. gl8f@virginia.edu                                             I'm not the NRA.
  196.  
  197. ------------------------------
  198.  
  199. Date: 11 Oct 89 08:02:51 GMT
  200. From: mcsun!ukc!axion!galadriel!robing@uunet.uu.net  (Robin Gape)
  201. Subject: PD Word Processors
  202.  
  203. From article <1989Oct10.125136.19140@cs.dal.ca>, by silvert@cs.dal.ca (Bill
  204.  Silvert) writes:
  205. > In article <3968@blake.acs.washington.edu> themod@blake.acs.washington.edu
  206.  (Chris Hinton) writes:
  207. >>
  208. >>  Hello you netters, I need some help.  I need a good PD Word Processor.  I
  209. >>have (gak!) 1st Word, but I hate it with a passion.  I also think spending
  210. >>$100+ for any program is just plain stupid.  Any suggestions?
  211. >
  212. > Why stupid?  Good software takes time to write, and a decent commercial
  213. > product can easily be worth more than $100.
  214. >
  215. [deleted]
  216. > --
  217. > Bill Silvert, Habitat Ecology Division.
  218. > Bedford Institute of Oceanography, Dartmouth, NS, Canada B2Y 4A2
  219. >     UUCP: ...!?uunet,watmath?!dalcs!biomel!bill
  220. >     Internet: biomel@cs.dal.CA    BITNET: bs%dalcs@dalac.BITNET
  221.  
  222. Would you say that a car should cost no more than $100? or $1000? or
  223. $10000? Or a computer for that matter? No more computing surfaces, no
  224. more Bentley Mulsannes (have to save a lot of pennies just for the
  225. insurance on that one!) yet they are no less _replicas_ than some piece
  226. of software.
  227.  
  228. You should be grateful that there is not more copy-protected and dongled
  229. software, and be grateful that somebody is prepared to earn their bread
  230. by supporting a 68000 machine of the future (immediate past, then)
  231. rather than an 8086 industrial relic!
  232.  
  233. On the original question, the plus version of first word is much better,
  234. but still mildly eccentric, WordUp now allows intermediate font sizes
  235. (using GEM fonts) but is still only one column, and systems such as
  236. Wordperfect are much more sophisticated.
  237.  
  238.  
  239. Good luck in the hunt, anyhow!
  240.  
  241. Robin Gape
  242. robing@uk.co.bt.galadriel
  243.  
  244. ------------------------------
  245.  
  246. Date: 11 Oct 89 22:13:44 GMT
  247. From: att!cbnewse!macduff@ucbvax.Berkeley.EDU  (Roger R. Espinosa)
  248. Subject: Portable Mac vs STACY
  249.  
  250. In article <10032@stag.math.lsa.umich.edu>, hyc@math.lsa.umich.edu (Howard Chu)
  251.  writes:
  252. > In article <45da3096.14a1f@force.UUCP> covertr@force.UUCP (Richard E. Covert)
  253.  writes:
  254. > >I would like to know how Atari can produce and sell a Laptop ST for under
  255.  $2,000
  256. > >while Apple charges almost $5500 for basically the same machine??
  257. > >
  258. > >The only real hardware difference between the two machines has to be the LCD
  259.  display??
  260. > >Does anyone have techincal specifications for the two LCD displays being
  261.  used??
  262. > >Is the Atari LCD display slower to redraw than the Mac display?? I know that
  263.  the
  264. > >ST has a higher resolution (640x400 VS. 535x352). since, the ST has higher
  265.  res
  266. > >then the Mac SE anyway.
  267. > Dunno 'bout the rest of the stuff you mention, but the specs I saw said
  268. > that the Mac portable will have a 640x400 LCD screen. I'm inclined to
  269. > believe that they're using identical display technology. They just don't
  270. > call it the same because Apple likes to lead the public to believe that
  271. > everything they do is new, innovative, and original... As long as the world
  272. > doesn't see anything else comparable, then Apple doesn't have any trouble
  273. > charging whatever the hell they feel like. If the STacy doesn't flood the
  274. > US market soon, it'll never get a chance, because most people are too willing
  275. > to swallow the Apple PR junk.
  276.  
  277. I shouldn't do this (don't want to start a flame war here...), but no, the
  278. screen *is* something totally new, and has been heralded as the *best* display
  279. on a portable around.  We Apple-junkies really don't like paying an arm and a
  280. leg, and love to point out the cheaper competition, but even the MS-DOS super-
  281. popular portables can't compare screen-wise.
  282.  
  283. And it's IBM that creates the new names for old stuff (e.g. "pel" and "fixed
  284.  card"
  285. for "pixel" and "hard disk"...), not Apple. The NuBUS is more standard than
  286.  NeXTs
  287. on the Macs.  There's a different card in the Portable because it uses a
  288.  different
  289. CPU than an SE/30 (their slots are the same size) and because of the power
  290. constraints.  Different machines, with different power capabilities.  It was a
  291. better move.
  292.  
  293. Is it too expensive? You betcha. The biggest gripe is the memory: the *most*
  294. expensive memory chips are required (Static DRAMS), and of course, come a year,
  295. you're gonna NEED that expensive RAM to run the new system software.
  296.  
  297. Roger
  298. (whose just bored and decided to distribute some truth...)
  299.  
  300. ------------------------------
  301.  
  302. Date: 11 OCT 89 18:57:45 CST
  303. From: Z4648252 <Z4648252%SFAUSTIN.BITNET@ricevm1.rice.edu>
  304. Subject: PORTFOLIO is *not* vaporware...
  305.  
  306.     With all the usual talk of "Atari's blown it again, etc., ad nausem"
  307. from many on this net, including myself, it might be refreshing to know
  308. that product is arriving, at least in this little neck of the woods, this
  309. IBM and Mac world that I live in.
  310.     At our university, I saw two Portfolios that just arrived.  One was
  311. at the bookstore labeled to go to the legal school and the other is going
  312. to the sports department.
  313.     To top it off, if you call 1-800-443-8020, you will not only get a
  314. nice lady answering with "Portfolio Hotline" but she will quickly tell
  315. you where your quickest dealer is.  To be frank, I was so flabbergasted
  316. at the professionalism that I forgot to ask if I could have ordered a
  317. Portfolio via the same number.
  318.     I did retain enough mental capabilities to ask if I could have some
  319. material for the Portfolio.  "Why yes.  What is your address?"  I actually
  320. remembered my address.
  321.     Anyway, I think the door is beginning to open.
  322.  
  323. Larry Rymal:  |East Texas Atari 68NNNers| <Z4648252@SFAUSTIN.BITNET>
  324.  
  325. ------------------------------
  326.  
  327. Date: 11 Oct 89 21:33:37 GMT
  328. From:
  329.  gem.mps.ohio-state.edu!uakari.primate.wisc.edu!uwm.edu!marque!carroll1!dnewton@
  330. tut.cis.ohio-state.edu  (Dave 'Yes, I'm weird' Newton)
  331. Subject: Printer driver modifications
  332.  
  333.    I remember in a STart magazine awhile ago that there is a program that will
  334. design printer drivers for the ST.  I'm using a Tandy DMP-2100 24-pin printer
  335. that hates doing Atari graphics even though it could.  Does anyone know if I
  336. can order that from STart or of another program that would do the same thing?
  337.    thanx in advance,
  338.  
  339. --
  340. David L. Newton       |      dnewton@carroll1.UUCP     | Quote courtesy of
  341. (414) 524-7343 (work) |     dnewton@carroll1.cc.edu    | Marie Niechwiadowicz,
  342. (414) 524-6809 (home) | 100 NE Ave, Waukesha, WI 53186 | Boston College.
  343. [Q]: How many surrealists does it take to screw in a light bulb? [A]: The fish.
  344.  
  345. ------------------------------
  346.  
  347. Date: Wed, 11 Oct 89 17:32 CDT
  348. From: Wayne Schellekens <WSCHELL%ccm.UManitoba.CA@Forsythe.Stanford.EDU>
  349. Subject: Wanted: Info on DEGAS picture compression
  350.  
  351. Does anyone have any information as to how DEGAS compresses its
  352. picture files?  I have created a program which uses DEGAS lo-res
  353. pictures and would like to reduce the space used on the disk.
  354.  
  355.                                Wayne Schellekens
  356.                                WSCHELL@ccm.UManitoba.CA
  357.  
  358. ------------------------------
  359.  
  360. End of INFO-ATARI16 Digest V89 Issue #511
  361. *****************************************